home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / EZsiteForum.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  80 lines

  1. #
  2. # This script  written by deepquest <deepquest@code511.com>
  3. #
  4. #
  5. # Ref: 
  6. #  Date: 4 sep , 2003  7:07:39  AM
  7. #  From: cyber_talon <cyber_talon@hotmail.com>
  8. #  Subject: EZsite Forum Discloses Passwords to Remote Users
  9.  
  10. if(description)
  11. {
  12.  script_id(11833);
  13.  script_version("$Revision: 1.7 $");
  14.  name["english"] = "EZsite Forum Discloses Passwords to Remote Users";
  15.  script_name(english:name["english"]);
  16.  # script_cve_id("CVE-MAP-NOMATCH");
  17.  # NOTE: reviewed, and no CVE id currently assigned (jfs, december 2003)
  18.  # Also, I've not found a bugtraq ID for this vulnerability
  19.  
  20.  desc["english"] = "
  21. The remote host is running EZsite Forum.
  22.  
  23. It is reported that this software stores usernames and passwords in
  24. plaintext form in the 'Database/EZsiteForum.mdb' file. A remote user
  25. can reportedly download this database.
  26.  
  27. Solution : No solution was available at the time. Configure your web server
  28. to disallow the download of .mdb files.
  29.  
  30. Risk factor : High";
  31.  
  32.  
  33.  script_description(english:desc["english"]);
  34.  
  35.  summary["english"] = "Checks for EZsiteForum.mdb password database";
  36.  
  37.  script_summary(english:summary["english"]);
  38.  
  39.  script_category(ACT_GATHER_INFO);
  40.  
  41.  
  42.  script_copyright(english:"This script is Copyright (C) 2003 deepquest");
  43.  family["english"] = "CGI abuses";
  44.  script_family(english:family["english"]);
  45.  script_dependencie("find_service.nes", "http_version.nasl");
  46.  script_require_ports("Services/www", 80);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. include("http_func.inc");
  52. include("http_keepalive.inc");
  53.  
  54.  
  55. port = get_http_port(default:80);
  56.  
  57.  
  58. if(!get_port_state(port))exit(0);
  59.  
  60.  
  61. sig = get_kb_item("www/hmap/" + port + "/description");
  62. if ( sig && "IIS" >!< sig ) exit(0);
  63.  
  64. dirs = make_list(cgi_dirs());
  65.  
  66. foreach d (dirs)
  67. {
  68.  req = http_get(item:string(d, "/forum/Database/EZsiteForum.mdb"), port:port);
  69.  res = http_keepalive_send_recv(port:port, data:req);
  70.  
  71.  if ( res == NULL ) exit(0);
  72.  
  73.  if("Standard Jet DB" >< res)
  74.     {
  75.       security_hole(port);
  76.      exit(0);
  77.      }
  78. }
  79.